// Aufgabe_2_3b_Verkehrsschilder_02

function setup() {
createCanvas(800, 400);
  background(200);
}

function draw() {
  stroke(0);
  strokeWeight(10);
  fill(255);
  quad(200, 50, 350, 200, 200, 350, 50, 200);
  strokeWeight(5);
  fill(255, 255, 0);
  quad(200, 120, 280, 200, 200, 280, 120, 200);

  stroke(3);
  fill(255, 0, 0);
  triangle(580, 50, 730, 350, 430, 350);
  noStroke();
  fill(255);
  triangle(580, 120, 671, 315, 486, 315);
  stroke(0);
  strokeWeight(3);
  fill(255, 0, 0);
  ellipse(580, 188, 30, 30);
  fill(255, 255, 0);
  ellipse(580, 236, 30, 30);
  fill(0, 255, 0);
  ellipse(580, 280, 30, 30);
}
